Skip to content

Commit

Permalink
commit docker recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
Vectorrent committed Mar 1, 2024
1 parent 10fb0a8 commit 2161236
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bookworm
FROM ubuntu:22.04

ENV DEBIAN_FRONTEND="noninteractive"

Expand All @@ -11,12 +11,5 @@ RUN apt-get update \

WORKDIR /app

COPY requirements.txt ./
RUN pip install --break-system-packages -r requirements.txt

COPY tests/requirements.txt tests/requirements.txt
RUN python3 -m pip install --break-system-packages -r tests/requirements.txt

COPY . ./

RUN python3 -m pip install --break-system-packages .
RUN python3 -m pip install . -r tests/requirements.txt

0 comments on commit 2161236

Please sign in to comment.