Skip to content

Commit

Permalink
revert dockerfile to use plain requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
pacharanero committed Mar 19, 2024
1 parent 35ebd71 commit 54377a2
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
FROM ubuntu:22.04
FROM python:3.12-bookworm

RUN apt-get update && apt-get install -y \
python3.11 \
python3.11-dev \
python3-pip
COPY requirements.txt .

COPY requirements/development-requirements.txt .

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

COPY . .

0 comments on commit 54377a2

Please sign in to comment.