Skip to content
Snippets Groups Projects
Commit 2da619f5 authored by Виталий Шунков's avatar Виталий Шунков Committed by Виталий Шунков
Browse files

ci: add cmd to picodata.Dockerfile

parent 796f98cd
No related branches found
No related tags found
1 merge request!1407ci: add cmd to picodata.Dockerfile
Pipeline #55073 canceled
#!/bin/sh
exec /usr/bin/picodata run "$@"
exec "$@"
\ No newline at end of file
......@@ -24,6 +24,7 @@ FROM rockylinux:8
COPY --from=builder /build/picodata/target/release/picodata /usr/bin/picodata
COPY helm/entrypoint.sh /entrypoint.sh
COPY helm/run.sh /run.sh
RUN chmod 755 /usr/bin/picodata \
&& mkdir -p /var/lib/picodata && mkdir -p /var/run/picodata \
......@@ -37,3 +38,4 @@ USER 1000:1000
WORKDIR /var/lib/picodata
ENTRYPOINT ["/entrypoint.sh"]
CMD ["/run.sh"]
#!/bin/sh
exec /usr/bin/picodata run "$@"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment