9 lines
158 B
Docker
9 lines
158 B
Docker
FROM debian:bullseye-slim
|
|
|
|
# Octopush relies on this path being the specified path
|
|
WORKDIR /src/work/
|
|
|
|
COPY entry.sh /src/script.sh
|
|
|
|
CMD [ "/src/script.sh" ]
|