* Chore disable git submodule for web-client and app-backend * Chore add newest source code of app-backend and web-client --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
27 lines
560 B
Docker
27 lines
560 B
Docker
# Dockerfile
|
|
|
|
# Use node alpine as it's a small node image
|
|
FROM node:alpine
|
|
|
|
# Create the directory on the node image
|
|
# where our Next.js app will live
|
|
RUN mkdir -p /app
|
|
|
|
# Set /app as the working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package.json and package-lock.json
|
|
# to the /app working directory
|
|
COPY package*.json /app
|
|
|
|
# Install dependencies in /app
|
|
RUN yarn install
|
|
|
|
# Copy the rest of our Next.js folder into /app
|
|
COPY . /app
|
|
|
|
# Ensure port 3000 is accessible to our system
|
|
EXPOSE 3000
|
|
|
|
# Run yarn dev, as we would via the command line
|
|
CMD ["yarn", "dev"] |