-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uses python 3.10 now
- Loading branch information
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
FROM python:alpine | ||
FROM python:3.10-alpine | ||
|
||
RUN apk add --update gcc libc-dev linux-headers | ||
|
||
WORKDIR /app | ||
|
||
# Only copies requirements.txt and src directory (see .dockerignore) | ||
COPY . . | ||
# First copy over the requirements.txt and install dependencies, this makes | ||
# building subsequent images easier. | ||
COPY requirements.txt . | ||
RUN pip install -r requirements.txt | ||
|
||
ENTRYPOINT [ "python3", "-m" , "src._server"] | ||
# Copy full source (see .dockerignore) | ||
COPY . . | ||
|
||
CMD [ "python3", "-m" , "src._server"] |