5 lines
175 B
Docker
5 lines
175 B
Docker
FROM alpine:latest
|
|
RUN apk add --no-cache bash rsync
|
|
COPY fst_data_pipeline/pipelines/volc/bag-copy.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"] |