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"]