27 lines
687 B
Docker
27 lines
687 B
Docker
# Base on latest (edge) alpine image
|
|
FROM harbor.ervine.dev/library/x86_64/alpine/alpine-3.11
|
|
|
|
MAINTAINER “Jonathan Ervine” <docker@ervine.org>
|
|
|
|
# Install updates
|
|
ENV LANG='en_US.UTF-8' \
|
|
LANGUAGE='en_US.UTF-8' \
|
|
FLASK_APP=/data/app-dev/app.py
|
|
|
|
RUN apk update && \
|
|
apk -U upgrade && \
|
|
apk -U add python3 gcc py3-pip python3-dev musl-dev libffi-dev git && \
|
|
adduser -D python
|
|
|
|
RUN mkdir /data && cd /data && git clone --single-branch --branch dev https://git.ervine.org/jonny/gcp-hockey-results /data
|
|
|
|
RUN pip3 install -r /data/requirements.txt
|
|
|
|
RUN rm -rf /tmp/src && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 3000
|
|
|
|
#USER python
|
|
|
|
CMD [ "/usr/bin/python3", "/data/main.py" ]
|