9 lines
132 B
Docker
9 lines
132 B
Docker
|
FROM ubuntu:22.04
|
||
|
|
||
|
RUN apt update
|
||
|
RUN apt install -yq --no-install-recommends \
|
||
|
# git \
|
||
|
wget \
|
||
|
gcc
|
||
|
COPY cool_file.txt /
|