Dockerfile

This commit is contained in:
Stefan Liebl 2020-07-02 19:41:20 +02:00
parent bc57016ab7
commit 947475621a
3 changed files with 4 additions and 5 deletions

3
Dockerfile Executable file
View File

@ -0,0 +1,3 @@
FROM alpine:latest
RUN echo "Hello World"

View File

@ -2,7 +2,4 @@ version: '3'
services:
hello_world:
image: alpine:latest
volumes:
- ./hello-world.sh:/opt/hello-world.sh:ro
command: /bin/sh /opt/hello-world.sh
build: .

View File

@ -1 +0,0 @@
echo "Hello World"