mirror of
https://gitlab.com/little-lines/backend.git
synced 2024-11-22 06:36:51 +00:00
14 lines
242 B
Text
14 lines
242 B
Text
|
FROM nginx:alpine
|
||
|
|
||
|
# Set up environment for building
|
||
|
RUN apk add yarn nodejs
|
||
|
|
||
|
# Copy files to build environment
|
||
|
RUN mkdir /opt/ll-backend
|
||
|
COPY . /opt/ll-backend
|
||
|
|
||
|
# Run Vite production build
|
||
|
WORKDIR /opt/ll-backend
|
||
|
RUN yarn
|
||
|
CMD yarn run start
|