-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02f3c45
commit de2c0b4
Showing
2 changed files
with
4 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,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"] |
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,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"] |