We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f21e1ff commit 11c4826Copy full SHA for 11c4826
Dockerfile
@@ -1,6 +1,12 @@
1
FROM ruby:2.3
2
RUN apt-get update -qq &&\
3
- apt-get install -y build-essential libpq-dev nodejs libssl1.0-dev imagemagick
+ apt-get install -y build-essential libpq-dev nodejs libssl1.0-dev imagemagick apt-transport-https
4
+
5
+RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - &&\
6
+ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list &&\
7
+ apt-get update && apt-get install yarn
8
9
+RUN export PATH="$PATH:/opt/yarn-[version]/bin"
10
11
RUN mkdir /leltar
12
WORKDIR /letar
0 commit comments