feat: added chmod for script, volume instruction, and basic program installation

This commit is contained in:
Leonard Excoffier
2024-09-12 00:03:01 -04:00
parent bf4afa213b
commit 0d71fb376c

View File

@@ -1,10 +1,20 @@
FROM debian
ENV ENV_1=""
WORKDIR /PROJECT_NAME
RUN apt update && \
apt full-upgrade -y && \
apt install -y vim
RUN mkdir appdata
VOLUME /PROJECT_NAME/appdata
COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
CMD["./entrypoint.sh"]