dockerize

This commit is contained in:
Petr Blaha 2023-09-06 18:30:08 +02:00
parent 306228fb3f
commit 12a9103f1f
2 changed files with 31 additions and 0 deletions

0
.dockerignore Normal file
View File

31
Dockerfile Normal file
View File

@ -0,0 +1,31 @@
FROM python:alpine
LABEL authors="Petr Blaha petr.blaha@cleverdata.cz"
USER root
RUN apk update
RUN apk add sdl2_ttf sdl2 build-base libc-dev pkgconfig gstreamer sdl2_mixer sdl2_image sdl2_pango linux-headers mesa-dev py3-virtualenv
RUN addgroup -S myuser && adduser -S -G myuser myuser
USER myuser
WORKDIR /home/myuser
RUN pip install --upgrade pip
ENV PATH="/home/myuser/.local/bin:${PATH}"
################### BEGIN Sideband ###########################################
COPY --chown=myuser:myuser requirements.txt requirements.txt
RUN pip install --user -r requirements.txt
COPY --chown=myuser:myuser . .
#Python create virtual environment
RUN virtualenv /home/myuser/sbapp/venv
RUN source /home/myuser/sbapp/venv/bin/activate
RUN make release
################### END Sideband ###########################################