Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ COPY --from=builder /usr/src/app/bin/httphq ./bin/httphq
COPY ./public ./public
COPY ./src/views ./src/views

RUN addgroup -S -g 1001 httphq \
&& adduser -S -u 1001 -G httphq httphq \
&& chown -R httphq:httphq /app

USER httphq

ENV APPLICATION_ENV=production

EXPOSE 8080
Expand Down
Loading