Skip to content

Docker


Docker Commands

Docker Builds
Build File Example

Build with ENVs, Entry Point, Copy files, Switch User and CMD

FROM alpine
ENV APP_VERSION=1.0
WORKDIR /app
COPY . .
RUN chown -R 1000:1000 /app
USER 1000
ENTRYPOINT ["sh", "entrypoint.sh"]
CMD ["sh", "cmd.sh"]


Placeholder

Placeholder

Placeholder