* P5-7495: added more db data and more designer tests * P5-7496: rebuild for sql export, added better test control values * changed order rows - edge from int to string * added tests for designer order rows * remove sql inserts * Some cleanup and moving files * package * removed comments * added base sql files to pass tests on github CI
13 lines
451 B
Docker
13 lines
451 B
Docker
# Uses the node base image with the latest LTS version
|
|
FROM node:14.16.0
|
|
# Informs Docker that the container listens on the
|
|
# specified network ports at runtime
|
|
EXPOSE 4000
|
|
COPY . app/
|
|
# Changes working directory to the new directory just created
|
|
WORKDIR /app
|
|
# Installs npm dependencies on container
|
|
RUN npm ci
|
|
# Command container will actually run when called
|
|
CMD ["npx", "nodemon", "-w", "src", "--ext", "ts", "--exec", "ts-node", "src/index.ts"]
|