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.
|
FROM node:buster |
|
|
|
RUN apt-get update -y \ |
|
&& apt-get install -y --no-install-recommends \ |
|
bundler \ |
|
ruby \ |
|
ruby-dev \ |
|
\ |
|
fontforge \ |
|
woff-tools \ |
|
woff2 |
|
|
|
CMD bash
|
|
|