Skip to content

Commit

Permalink
docker: update alpine base image
Browse files Browse the repository at this point in the history
  • Loading branch information
aiooss-anssi committed Dec 18, 2023
1 parent 02f3c45 commit de2c0b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion suricata/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (C) 2023 ANSSI
# SPDX-License-Identifier: GPL-3.0-only

FROM alpine:20230901
FROM alpine:3.19
RUN apk add --no-cache suricata
COPY . /suricata
CMD ["/suricata/entrypoint.sh"]
6 changes: 3 additions & 3 deletions webapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright (C) 2023 ANSSI
# SPDX-License-Identifier: GPL-3.0-only

FROM alpine:20230329
RUN apk add --no-cache py3-jinja2 py3-uvloop && \
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing py3-aiosqlite py3-starlette uvicorn
FROM alpine:20230901
RUN apk add --no-cache py3-aiosqlite py3-jinja2 py3-starlette py3-uvloop && \
apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing uvicorn
COPY . /webapp
WORKDIR /webapp
CMD ["uvicorn", "--host", "0.0.0.0", "main:app"]

0 comments on commit de2c0b4

Please sign in to comment.