the reminder not showing content on the card at dashboard view and the quizes are hardcoded must move to the db make api's for it
13 lines
234 B
Docker
13 lines
234 B
Docker
# Note: This image is also built in CircleCI, so limit references to internal repositories.
|
|
FROM node:15
|
|
|
|
# Create app directory
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy app to directory
|
|
COPY . /usr/src/app
|
|
|
|
RUN npm install
|
|
|
|
CMD ["make", "test"]
|