test action

This commit is contained in:
2023-11-13 23:20:24 +01:00
parent 248ede3650
commit 5fcf6d1b16
4 changed files with 96 additions and 70 deletions

View File

@@ -1,2 +1,8 @@
FROM ubuntu:latest
RUN echo "lala"
# Container image that runs your code
FROM alpine:3.10
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]