WIP: Add dev environment using docker
This commit is contained in:
parent
b9cfdf5456
commit
fdc1460481
4 changed files with 70 additions and 20 deletions
13
core/Dockerfile.dev
Normal file
13
core/Dockerfile.dev
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.11-bookworm
|
||||
LABEL authors="lagertonne"
|
||||
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
RUN mkdir /code
|
||||
WORKDIR /code
|
||||
COPY requirements.dev.txt /code/
|
||||
COPY requirements.prod.txt /code/
|
||||
RUN apt update && apt install -y mariadb-client
|
||||
RUN pip install -r requirements.dev.txt
|
||||
RUN pip install -r requirements.prod.txt
|
||||
RUN pip install mysqlclient
|
||||
COPY . /code/
|
Loading…
Add table
Add a link
Reference in a new issue