]> Untitled Git - lemmy-ui.git/blobdiff - dev.dockerfile
use badge-muted
[lemmy-ui.git] / dev.dockerfile
index 51bcd26cfa0a55ba97e09d2c478692ac7e0e2a83..0e925c0a90dfca99dceb40c7186bc82e79fb757d 100644 (file)
@@ -3,9 +3,13 @@ RUN apk update && apk add curl yarn python3 build-base gcc wget git --no-cache
 \r
 WORKDIR /usr/src/app\r
 \r
+ENV npm_config_target_arch=x64\r
+ENV npm_config_target_platform=linux\r
+ENV npm_config_target_libc=musl\r
+\r
 # Cache deps\r
 COPY package.json yarn.lock ./\r
-RUN yarn install --ignore-scripts --prefer-offline --pure-lockfile\r
+RUN yarn --prefer-offline --pure-lockfile\r
 \r
 # Build\r
 COPY generate_translations.js \\r
@@ -20,7 +24,7 @@ COPY src src
 # Set UI version \r
 RUN echo "export const VERSION = 'dev';" > "src/shared/version.ts"\r
 \r
-RUN yarn install --ignore-scripts --prefer-offline\r
+RUN yarn --prefer-offline\r
 RUN yarn build:dev\r
 \r
 FROM node:alpine as runner\r
@@ -29,4 +33,4 @@ COPY --from=builder /usr/src/app/node_modules /app/node_modules
 \r
 EXPOSE 1234\r
 WORKDIR /app\r
-CMD node dist/js/server.js\r
+CMD node dist/js/server.js
\ No newline at end of file