Skip to content

Commit

Permalink
Begin dockerizing backend application
Browse files Browse the repository at this point in the history
okeneo committed Feb 8, 2024
1 parent 558f3c6 commit 8efb98e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM python:3.12.2-slim-bookworm

ENV PIP_DISABLE_PIP_VERSION_CHECK 1
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

WORKDIR /backend

COPY . /backend

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

0 comments on commit 8efb98e

Please sign in to comment.