Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
traderpedroso committed Oct 17, 2024
1 parent a9cdfa7 commit e622420
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
FROM python:3.11-alpine
FROM python:3.10

WORKDIR /app
ENV TZ=etc/UTC
ENV TZ=etc/UTC DEBIAN_FRONTEND=noninteractive

# Install dependencies
RUN apk add --no-cache \
RUN apt-get update && apt-get install -y \
git \
build-base \
g++ \
libc-dev
build-essential

# Install Python dependencies
COPY . .
RUN pip3 install -r requirements.txt
COPY requirements.txt .
RUN pip install -r requirements.txt



Expand Down

0 comments on commit e622420

Please sign in to comment.