~johanvandegriff/games.johanv.net

bf475fa5fe5a4e7f43b112dcd03af804795c4542 — Johan Vandegriff 2 years ago 111dba7
Dockerfile apt => apt-get
1 files changed, 1 insertions(+), 1 deletions(-)

M Dockerfile
M Dockerfile => Dockerfile +1 -1
@@ 2,7 2,7 @@ FROM python:3.8
COPY .  /app
WORKDIR /app
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y libcgi-session-perl libhunspell-dev default-jre && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y libcgi-session-perl libhunspell-dev default-jre && rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
EXPOSE  8000
# CMD ["python", "games.py"]