7 أسطر
78 B
Docker
7 أسطر
78 B
Docker
FROM alpine:latest
|
|
|
|
COPY app.sh /app.sh
|
|
RUN chmod +x /app.sh
|
|
|
|
CMD ["/app.sh"]
|