Skip to content

Instantly share code, notes, and snippets.

@DXist
Created December 7, 2016 10:29
Show Gist options
  • Save DXist/c90f653145a11b04054904d75ae624a0 to your computer and use it in GitHub Desktop.
Save DXist/c90f653145a11b04054904d75ae624a0 to your computer and use it in GitHub Desktop.
FROM python:3.5-alpine
WORKDIR /app
EXPOSE 8888
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
RUN pip install -e .
CMD ["sopr-datacollector", "docker_server"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment