Browse Source

Add comments

docker
Luke Childs 4 years ago
parent
commit
da60c8b992
  1. 3
      Dockerfile

3
Dockerfile

@ -2,12 +2,15 @@ FROM python:3.7-slim
WORKDIR /app
# Install build deps
RUN apt-get update
RUN apt-get install -y --no-install-recommends build-essential
# Install runtime deps
COPY requirements.txt /app/
RUN pip install --no-cache-dir -q -r requirements.txt
# Copy in app source
COPY . /app
EXPOSE 5000

Loading…
Cancel
Save