Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
FROM debian@sha256:bd73076dc2cd9c88f48b5b358328f24f2a4289811bd73787c031e20db9f97123 as build
RUN apt-get update
RUN apt-get install -y wget make gcc curl
FROM alpine:3.19 as build
Comment thread Fixed
Comment thread Fixed

Check notice

Code scanning / Security Audit for Infrastructure

Ensure that HEALTHCHECK instructions have been added to container images. Note

Ensure that HEALTHCHECK instructions have been added to container images.

Check notice

Code scanning / Security Audit for Infrastructure

Ensure that a user for the container has been created. Note

Ensure that a user for the container has been created.
RUN apk add --no-cache wget make gcc musl-dev curl
RUN wget https://sourceforge.net/projects/aa-project/files/aa-lib/1.4rc5/aalib-1.4rc5.tar.gz/download
RUN tar -xzf download && rm download
WORKDIR /aalib-1.4.0
Expand Down
Loading