Merge branch 'main' of github.com:sartography/spiff-arena
This commit is contained in:
commit
44f31ffc36
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue