1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00

Fix Dockerfile (#1646)

Co-authored-by: Matt Smith <quaffapint@gmail.com>
Co-authored-by: Paweł Kuna <1282324+codecalm@users.noreply.github.com>
This commit is contained in:
Matt Smith
2023-07-15 16:08:11 -04:00
committed by GitHub
parent f77c712015
commit 7fe30a178f
2 changed files with 13 additions and 12 deletions

View File

@@ -0,0 +1,5 @@
---
"@tabler/core": patch
---
`Dockerfile` fix

View File

@@ -1,27 +1,23 @@
FROM ruby:2.7-alpine
RUN apk add --no-cache nodejs pnpm && \
apk add --no-cache --virtual build-dependencies build-base
WORKDIR /app
ADD package.json /app/
ADD package-lock.json /app/
ADD package.json /app/
ADD _config.yml /app/
ADD _config_prod.yml /app/
ADD Gemfile /app/
ADD Gemfile.lock /app/
ADD _config.yml /app/
ADD package.json /app/
ADD pnpm-lock.yaml /app/
ADD gulpfile.js /app/
# RUN apk update && apk add --virtual build-dependencies build-base
RUN apk add --virtual build-dependencies build-base
RUN apk add npm --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community/
RUN npm i -g pnpm
RUN pnpm install
RUN bundle config --global silence_root_warning 1 && bundler install --verbose
# website
EXPOSE 3000
# website management (browser auto reload)
EXPOSE 3001
# run tabler
ENTRYPOINT [ "pnpm", "run", "start-plugins" ]
ENTRYPOINT [ "pnpm", "run", "start-plugins" ]