Skip to content

Commit

Permalink
Python ~> 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
amancevice committed May 4, 2024
1 parent 72937e7 commit e32c2c8
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 172 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.13
3.11.9
11 changes: 4 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
ARG NODE_VERSION=16
ARG PYTHON_VERSION=3.10

ARG PYTHON_VERSION=3.11
FROM python:$PYTHON_VERSION

# Configure environment
Expand Down Expand Up @@ -56,10 +54,9 @@ RUN groupadd supergroup && \
pip install -U pip

# Install pips
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY requirements-dev.txt ./
RUN pip install -r requirements-dev.txt
COPY requirements*.txt ./
RUN pip install -r requirements.txt && \
pip install -r requirements-dev.txt

# Configure application
EXPOSE 8088
Expand Down
Loading

0 comments on commit e32c2c8

Please sign in to comment.