some basics for the good bois
This commit is contained in:
parent
ceb343f038
commit
0b3bcc5be6
11 changed files with 143 additions and 0 deletions
12
basics/Dockerfile
Normal file
12
basics/Dockerfile
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Dokumenation: https://docs.docker.com/reference/dockerfile/
|
||||
|
||||
# FROM debian:trixie-slim
|
||||
FROM archlinux:latest
|
||||
|
||||
WORKDIR /root/app
|
||||
|
||||
COPY ./test.sh .
|
||||
|
||||
RUN chmod +x test.sh
|
||||
|
||||
ENTRYPOINT ["/bin/bash", "-c", "/root/app/test.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue