Skip to content

Commit

Permalink
added the data directory for output files
Browse files Browse the repository at this point in the history
  • Loading branch information
caffix committed Feb 23, 2024
1 parent 0edab91 commit 316d015
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ ENV HOME /
RUN addgroup user \
&& adduser user -D -G user \
&& mkdir /.config \
&& chown user:user /.config \
&& mkdir /.config/amass \
&& chown -R user:user /.config/amass
&& chown user:user /.config/amass \
&& mkdir /data \
&& chown user:user /data
USER user
WORKDIR /data
STOPSIGNAL SIGINT
ENTRYPOINT ["/bin/amass"]

0 comments on commit 316d015

Please sign in to comment.