This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
backend/Dockerfile

15 lines
302 B
Docker
Raw Normal View History

2023-09-24 11:36:06 +00:00
FROM nginx:alpine
# Set up environment for building
RUN apk add yarn nodejs
# Copy files to build environment
RUN mkdir /opt/ll-backend
2023-09-24 11:39:48 +00:00
COPY /home/sasha/Data1/Apps/ll-backend/.env /opt/ll-backend
2023-09-24 11:36:06 +00:00
COPY . /opt/ll-backend
# Run Vite production build
WORKDIR /opt/ll-backend
RUN yarn
CMD yarn run start