Skip to content

Commit

Permalink
webapp: use Alpine v3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
aiooss-anssi committed Feb 8, 2024
1 parent 24cf5e3 commit 91093d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions webapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Copyright (C) 2023 ANSSI
# SPDX-License-Identifier: GPL-3.0-only

FROM alpine:20231219
RUN apk add --no-cache py3-aiosqlite py3-jinja2 py3-starlette py3-uvloop uvicorn
FROM alpine:3.19
RUN apk add --no-cache py3-aiosqlite py3-jinja2 py3-starlette py3-uvloop
RUN apk add --no-cache uvicorn --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community
COPY . /webapp
WORKDIR /webapp
CMD ["uvicorn", "--host", "0.0.0.0", "main:app"]

0 comments on commit 91093d4

Please sign in to comment.