Skip to content

Instantly share code, notes, and snippets.

@rnovec
Last active July 18, 2022 04:23
Show Gist options
  • Save rnovec/eec7b18b152da963c9fb22ac617fda14 to your computer and use it in GitHub Desktop.
Save rnovec/eec7b18b152da963c9fb22ac617fda14 to your computer and use it in GitHub Desktop.
Dockerfile for python app & ghostscript
# Dockerfile for Python App
#
# For more information about this section see:
# https://hub.docker.com/_/python
FROM python:3.6.6
RUN apt-get update && apt-get -y install ghostscript && apt-get clean
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment