Skip to content
Snippets Groups Projects

Minor fixes

Merged Clemens Pohle requested to merge minor-fixes into main
6 files
+ 7
25
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 1
5
FROM python:3-alpine
FROM python:3
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
RUN apk update && apk add python3-dev \
gcc \
libc-dev \
libffi-dev
COPY ./requirements.txt .
RUN pip install -r requirements.txt --no-cache-dir
COPY . .
Loading