Co-authored-by: kjuulh <contact@kjuulh.io> Reviewed-on: https://git.front.kjuulh.io/kjuulh/octopush/pulls/14
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" ]
|