Compare commits

...

2 Commits

Author SHA1 Message Date
raoul 7fde570f87 Merge pull request 'Use Alpine images to reduce image size' (#13) from use-alpine-images into master
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/tag/woodpecker Pipeline was successful Details
Reviewed-on: #13
2023-07-30 05:17:20 +00:00
Raoul Snyman f3b60f4c39 Use Alpine images to reduce image size
ci/woodpecker/push/woodpecker Pipeline was successful Details
ci/woodpecker/pr/woodpecker Pipeline was successful Details
2023-07-29 22:15:13 -07:00
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
FROM python:3.11
FROM python:3.11-alpine
WORKDIR /app
ADD . /app
RUN apk add git
RUN pip install -e .
RUN pip install hypercorn

View File

@ -1,4 +1,4 @@
FROM python:3.11
FROM python:3.11-alpine
RUN pip install --extra-index-url https://git.snyman.info/api/packages/raoul/pypi/simple/ CodeSmidgen hypercorn