We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93918f2 commit a28f570Copy full SHA for a28f570
Dockerfile
@@ -18,15 +18,20 @@ FROM ruby:3.3.8-alpine
18
19
ARG RAILS_ROOT=/usr/src/app/
20
21
+# available: https://pkgs.alpinelinux.org/packages
22
RUN apk update && apk upgrade && apk add --update --no-cache \
23
bash \
24
+ build-base \
25
curl \
26
imagemagick \
27
+ libffi-dev \
28
+ perl-yaml-libyaml \
29
+ linux-headers \
30
+ nodejs \
31
+ npm \
32
postgresql-client \
33
tzdata \
34
vim \
- nodejs \
- npm \
35
&& rm -rf /var/cache/apk/*
36
37
RUN echo "NodeJS Version:" "$(node -v)"
0 commit comments