Skip to content

Instantly share code, notes, and snippets.

View bascht's full-sized avatar
📢
Setting all the statuses.

Sebastian Schulze bascht

📢
Setting all the statuses.
View GitHub Profile
@bascht
bascht / Dockerfile
Created April 12, 2018 10:54 — forked from moonglum/Dockerfile
A user that can't modify `/app` can modify it when it is mounted
FROM ruby:2.4
RUN useradd -m app && \
mkdir /app && \
chown app:app /app
WORKDIR /app
USER app