Skip to content
Snippets Groups Projects
Commit a91b0331 authored by Ostermayer, Markus's avatar Ostermayer, Markus
Browse files

Rewrote dockerfile

parent 96daea8a
No related branches found
No related tags found
No related merge requests found
Pipeline #202442 passed
...@@ -2,14 +2,27 @@ FROM alpine:3.16 ...@@ -2,14 +2,27 @@ FROM alpine:3.16
# QEMU-Dependencies # QEMU-Dependencies
RUN apk update; \ RUN apk update; \
apk add qemu qemu-img qemu-system-x86_64 \ \
apk add --virtual .build-deps \
# Install build dependencies
py3-pip \
; \
apk add \
qemu \
qemu-img \
qemu-system-x86_64 \
# Install Dependencies # Install Dependencies
# Install build-essentials equivalent # Install build-essentials equivalent
# https://packages.ubuntu.com/jammy/build-essential # https://packages.ubuntu.com/jammy/build-essential
gcc g++ make libc-dev \ gcc \
g++ \
make \
libc-dev \
# Install other sweb Dependencies # Install other sweb Dependencies
python3 py3-pip cmake; \ python3 \
cmake \
; \
pip install swet==0.0.6 --extra-index-url https://gitlab.tugraz.at/api/v4/projects/21215/packages/pypi/simple; \ pip install swet==0.0.6 --extra-index-url https://gitlab.tugraz.at/api/v4/projects/21215/packages/pypi/simple; \
apk del py3-pip apk del --no-network .build-deps;
WORKDIR /sweb WORKDIR /sweb
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment