12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk add gcc
|
||||
RUN mkdir /app
|
||||
|
||||
COPY *.c /app/
|
||||
COPY test.sh /
|
||||
RUN chmod +x "test.sh"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ENTRYPOINT ["/test.sh"]
|
||||
Reference in New Issue
Block a user