Initial commit
This commit is contained in:
commit
904a0b0bbf
26 changed files with 4847 additions and 0 deletions
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
|||
FROM node:alpine AS assets
|
||||
|
||||
RUN mkdir /node_modules \
|
||||
&& chown node:node -R /node_modules
|
||||
|
||||
ENV PATH=${PATH}:/node_modules/.bin
|
||||
|
||||
RUN apk add --no-cache bash \
|
||||
&& yarn global add tailwindcss
|
||||
|
||||
USER node
|
||||
|
||||
###
|
||||
|
||||
FROM php:8-cli-alpine AS composer
|
||||
|
||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||
|
||||
###
|
||||
|
||||
FROM opdavies/sculpin-serve:php-8.1-alpine AS web
|
||||
|
||||
# COPY --from=assets /app/dist /app
|
Loading…
Add table
Add a link
Reference in a new issue