Merge branch 'main' of github.com:sartography/spiff-arena

This commit is contained in:
jasquat 2023-02-22 15:35:02 -05:00
commit 241cb6ed0b
1 changed files with 2 additions and 1 deletions

View File

@ -8,11 +8,12 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"
WORKDIR /app WORKDIR /app
# base plus packages needed for deployment. Could just install these in final, but then we can't cache as much. # base plus packages needed for deployment. Could just install these in final, but then we can't cache as much.
# vim is just for debugging
FROM base AS deployment FROM base AS deployment
RUN apt-get update \ RUN apt-get update \
&& apt-get clean -y \ && apt-get clean -y \
&& apt-get install -y -q curl git-core gunicorn3 default-mysql-client \ && apt-get install -y -q curl git-core gunicorn3 default-mysql-client vim \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Setup image for installing Python dependencies. # Setup image for installing Python dependencies.