Skip to content

Commit

Permalink
use fresh base image
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jul 13, 2023
1 parent 12c7bc0 commit 2b4256c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile_download_model_data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.8-slim-buster
FROM python:3.11.3-slim-buster
ENV PIP_NO_CACHE_DIR=yes
RUN pip install --upgrade pip
WORKDIR /src/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_sentiment
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.8-slim-buster
FROM python:3.11.3-slim-buster
ENV PIP_NO_CACHE_DIR=yes
RUN DEBIAN_FRONTEND=noninteractive apt update && apt upgrade -y && apt install -y --no-install-recommends nginx-light && rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_summary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.8-slim-buster
FROM python:3.11.3-slim-buster
ENV PIP_NO_CACHE_DIR=yes
RUN DEBIAN_FRONTEND=noninteractive apt update && apt upgrade -y && apt install -y --no-install-recommends nginx-light && rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ fastapi
uvicorn
python-multipart
transformers==4.29.2
markupsafe==2.0.1

0 comments on commit 2b4256c

Please sign in to comment.