Merge branch 'master' of gitlab.psi.ch:bec/bec

This commit is contained in:
wakonig_k 2022-07-05 10:56:09 +02:00
commit 2a122783ce
2 changed files with 14 additions and 0 deletions

View File

@ -1,6 +1,13 @@
# set base image (host OS)
FROM python:3.8-alpine
RUN apk update && apk add python3-dev \
gcc \
libc-dev \
g++
# set the working directory in the container
WORKDIR /code

View File

@ -1,6 +1,13 @@
# set base image (host OS)
FROM python:3.8-alpine
RUN apk update && apk add python3-dev \
gcc \
libc-dev \
g++
# set the working directory in the container
WORKDIR /code