forked from kriskbx/gitlab-time-tracker-taskbar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (29 loc) · 721 Bytes
/
Dockerfile
File metadata and controls
34 lines (29 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
FROM ubuntu:16.04
RUN rm /bin/sh && ln -s /bin/bash /bin/sh && \
sed -i 's/^mesg n$/tty -s \&\& mesg n/g' /root/.profile
WORKDIR /code
RUN apt update && apt install -y \
g++-4.8 \
icnsutils \
graphicsmagick \
libgnome-keyring-dev \
xz-utils \
xorriso \
xvfb \
devscripts \
fakeroot \
debhelper \
automake \
autotools-dev \
pkg-config \
git \
ca-certificates \
rpm \
zip \
snapcraft
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash && \
export NVM_DIR="$HOME/.nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && \
nvm install 8.4 && \
npm install -g yarn
ENTRYPOINT ["/bin/bash", "--login", "-i", "-c"]
CMD ["bash"]