Sha256: 7053db8810691f93978d86f649134e64f2d31b22e5064415ff49a1253a769976

Contents?: true

Size: 305 Bytes

Versions: 1

Compression:

Stored size: 305 Bytes

Contents

FROM ruby:3.0

ARG UNAME=rubyapp
ARG UID=1000
ARG GID=1000


RUN groupadd -g $GID -o $UNAME && useradd -u $UID -g $GID -d /app -ms /usr/sbin/nologin $UNAME

WORKDIR /app

COPY scripts/entrypoint.sh /entrypoint.sh

COPY . .
RUN bundle install

VOLUME ["/certs"]

USER $UNAME

ENTRYPOINT ["/entrypoint.sh"]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cryptorecord-1.0.0 Dockerfile