Update Dockerfile

This commit is contained in:
2023-09-13 19:44:43 +00:00
parent 0682028abd
commit f7c7b65cae

View File

@@ -7,7 +7,7 @@ WORKDIR /software
RUN \ RUN \
apt update && \ apt update && \
apt install apt apt-utils sudo git wget curl make gcc tini && \ apt install -y apt apt-utils sudo git wget curl make gcc tini && \
apt upgrade -y && \ apt upgrade -y && \
apt install -y golang && \ apt install -y golang && \
apt autoremove --purge -y && apt clean -y && \ apt autoremove --purge -y && apt clean -y && \
@@ -18,4 +18,4 @@ RUN \
ENV PATH=$PATH:/usr/local/bin ENV PATH=$PATH:/usr/local/bin
ENTRYPOINT ["tini", "--"] ENTRYPOINT ["tini", "--"]
CMD ["sleep","infinity"] CMD ["sleep","infinity"]