Commit 7b0176b1 authored by Tushar's avatar Tushar
Browse files

Add dockerfile and lockfile

Showing with 6698 additions and 20 deletions
+6698 -20
# Ignore node modules and form manager
node_modules
enketo-express/node_modules
enketo-core/node_modules
form-manager
\ No newline at end of file
FROM node:12
ENV ENKETO_SRC_DIR=/srv/src/enketo_express
WORKDIR ${ENKETO_SRC_DIR}
RUN npm install -g grunt-cli pm2
COPY . ${ENKETO_SRC_DIR}
RUN npm install --production
# Persist the `secrets` directory so the encryption key remains consistent.
RUN mkdir -p ${ENKETO_SRC_DIR}/setup/docker/secrets
VOLUME ${ENKETO_SRC_DIR}/setup/docker/secrets
EXPOSE 8005
CMD ["/bin/bash", "-c", "${ENKETO_SRC_DIR}/setup/docker/start.sh"]
FROM ubuntu:20.04
RUN apt update && apt install -y build-essential curl wget jq
RUN curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get install -y nodejs
RUN npm i -g pnpm@7
RUN npm i -g pm2
WORKDIR /app
COPY enketo-core enketo-core
COPY enketo-express enketo-express
WORKDIR enketo-express
RUN pnpm i
CMD ["bash", "start.sh"]
\ No newline at end of file
This diff is collapsed.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment