refactor: build development Tailwind CSS in a separate Docker service
Some checks failed
actionlint check / actionlint check (pull_request) Successful in 8s
checkov check / checkov check (pull_request) Failing after 1m15s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 7s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 9s
GitLeaks check / GitLeaks check (pull_request) Successful in 13s
hadolint check / hadolint check (pull_request) Successful in 12s
htmlhint check / htmlhint check (pull_request) Successful in 22s
markdownlint check / markdownlint check (pull_request) Successful in 22s
Prettier check / Prettier check (pull_request) Successful in 23s
Rust check / Rust check (pull_request) Successful in 15m59s
ShellCheck check / ShellCheck check (pull_request) Failing after 18s
Stylelint check / Stylelint check (pull_request) Successful in 11s
yamllint check / yamllint check (pull_request) Successful in 15s

This commit is contained in:
2025-01-03 10:41:36 +01:00
parent 9ce77897d8
commit 19be0884d0
7 changed files with 36 additions and 49 deletions

View File

@ -0,0 +1,13 @@
# 23-alpine3.21
FROM node@sha256:c61b6b12a3c96373673cd52d7ecee2314e82bca5d541eecf0bc6aee870c8c6f7
WORKDIR /srv/app
COPY ./package.json ./package.json
COPY ./package-lock.json ./package-lock.json
RUN npm install
USER 1000:1000
CMD ["npm", "run", "watch"]