Test / Dockerfile
Turing311's picture
Update Dockerfile
49da89d verified
raw
history blame contribute delete
No virus
183 Bytes
FROM ubuntu:20.04
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone
COPY ./run.sh .
RUN chmod a+x run.sh
CMD ["./run.sh"]