Skip to content

Commit

Permalink
fixed entrypoint mistake from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
joxz committed Feb 14, 2019
1 parent 4ad2e8f commit 46db49e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ FROM adoptopenjdk/openjdk11:alpine-slim
LABEL maintainer="https://hub.docker.com/u/jones2748"

ENV TCLLIBPATH=/opt/TesTcl
ENV PATH /opt/jtcl:$PATH
ENV PATH /opt/jtcl:/opt/test:/mnt:$PATH

RUN apk add --no-cache --update dumb-init

COPY --from=build /opt/ /opt/

WORKDIR /mnt

ENTRYPOINT ["/usr/bin/dumb-init"]
ENTRYPOINT ["/usr/bin/dumb-init","--","/opt/entrypoint.sh"]

CMD ["/opt/entrypoint.sh"]
CMD ["/bin/sh"]

0 comments on commit 46db49e

Please sign in to comment.