You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/docker/development/Dockerfile

13 lines
256 B
Docker

FROM python:3.9-bullseye
# install additional dependencies
RUN apt-get update && apt-get install -y gettext
WORKDIR /app
# install requirements
COPY ./requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
COPY ./docker /app/docker