You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
355 B
20 lines
355 B
FROM node:buster |
|
|
|
RUN apt-get update -y \ |
|
&& apt-get install -y --no-install-recommends \ |
|
bundler \ |
|
ruby \ |
|
ruby-dev \ |
|
\ |
|
fontforge \ |
|
woff-tools \ |
|
woff2 |
|
|
|
WORKDIR /workspace |
|
COPY Gemfile /workspace |
|
COPY Gemfile.lock /workspace |
|
RUN bundle install |
|
COPY package.json /workspace |
|
COPY package-lock.json /workspace |
|
RUN npm ci |
|
CMD bash
|
|
|