Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #790

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM ubuntu:latest
LABEL maintainer="[email protected]"

ENV GOSU_VERSION 1.11
ENV GOSU_VERSION=1.11

RUN apt-get update && apt-get install -y adduser
RUN adduser uvdesk -q --disabled-password --gecos ""

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could also just be moved after # Install base supplementary packages line 31 and line 6 is not needed


# Install base supplimentary packages

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Install base supplimentary packages
# Install base supplementary packages

Expand Down Expand Up @@ -78,4 +79,4 @@ RUN \
WORKDIR /var/www

ENTRYPOINT ["uvdesk-entrypoint.sh"]
CMD ["/bin/bash"]
CMD ["/bin/bash"]