Skip to content
Closed
Changes from all commits
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
17 changes: 14 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
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 \
ncurses-dev \
libx11-dev \
libxext-dev \
slang-dev \
autoconf \
automake \
libtool
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