This repository has been archived on 2019-10-13. You can view files and clone it, but cannot push or open issues or pull requests.
basta-server/Dockerfile
2017-12-07 13:06:18 +01:00

9 lines
293 B
Docker

FROM alpine:3.6
RUN apk upgrade --update
RUN apk add --update python3
RUN apk add --update py3-pillow
RUN pip3 install django==1.11.7 django-jinja django-rest-framework django-analytical
ADD ["ofu_app", "/app"]
WORKDIR /app
EXPOSE 8080
CMD ["python3", "manage.py", "runserver", "0.0.0.0:8080"]