Skip to content
Snippets Groups Projects
Verified Commit ef4dafd3 authored by iliya.saroukha's avatar iliya.saroukha :first_quarter_moon:
Browse files

feat: part 1 of ex3 done (lab8)

parent 3ed061a2
Branches
No related tags found
No related merge requests found
Pipeline #32468 passed
......@@ -222,3 +222,27 @@ le nom débute par la lettre "a", il est nécessaire d'exécuter le script
```bash
./mogrifydock.sh "png" "a*.jpg"
```
## Exercice 3
### Partie 1
```bash
FROM debian:12-slim
RUN apt update -y && apt install -y wget tar make gcc libncurses-dev && \
wget https://www.alessandropira.org/alienwave/alienwave-0.4.0.tar.gz && \
tar -xzf alienwave-0.4.0.tar.gz alienwave && cd /alienwave/ && make && \
apt remove -y --purge wget make gcc libncurses-dev
WORKDIR /alienwave
ENTRYPOINT ["./alienwave"]
```
#### Taille de l'image
```bash
REPOSITORY TAG IMAGE ID CREATED SIZE
alienware 1.0 f4ee2cb8bbb4 46 seconds ago 340MB
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment