Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-workflow
Commits
7b0176b1
Commit
7b0176b1
authored
1 year ago
by
Tushar
Browse files
Options
Download
Patches
Plain Diff
Add dockerfile and lockfile
parent
086d8506
main
dev
feat/centro
feature/formlistapi
revert-67-contributeByGitpod
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
packages/.dockerignore
+2
-1
packages/.dockerignore
packages/enketo-express/Dockerfile
+13
-19
packages/enketo-express/Dockerfile
packages/enketo-express/pnpm-lock.yaml
+6683
-0
packages/enketo-express/pnpm-lock.yaml
with
6698 additions
and
20 deletions
+6698
-20
packages/.dockerignore
+
2
−
1
View file @
7b0176b1
# Ignore node modules and form manager
node_modules
enketo-express/node_modules
enketo-core/node_modules
form-manager
\ No newline at end of file
This diff is collapsed.
Click to expand it.
packages/enketo-express/Dockerfile
+
13
−
19
View file @
7b0176b1
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.
Click to expand it.
packages/enketo-express/pnpm-lock.yaml
0 → 100644
+
6683
−
0
View file @
7b0176b1
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets