Robin Moffatt
05/05/2023, 7:10 AMDockerfile
and not being totally familiar with them beyond the basics wondered if the duplication of some of these lines is deliberate and if so what purpose it serves? Thanks.
```EXPOSE 8000/tcp
# Setup user
RUN addgroup -S lakefs && adduser -S lakefs -G lakefs
USER lakefs
WORKDIR /home/lakefs
ENTRYPOINT ["/app/lakefs"]
CMD ["run"]```I'm planning a PR on the file so will submit a second one to tidy things up, if necessary
Ariel Shaqed (Scolnicov)
05/05/2023, 7:13 AMRobin Moffatt
05/05/2023, 7:14 AM