Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
web
Manage
Activity
Members
Labels
Plan
Issues
59
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ecobytes
web
Merge requests
!48
feat: add development container + build/deploy to S3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
feat: add development container + build/deploy to S3
fix/90-pipeline-incident
into
dev
Overview
0
Commits
3
Pipelines
10
Changes
6
Merged
Jon Richter
requested to merge
fix/90-pipeline-incident
into
dev
1 year ago
Overview
0
Commits
3
Pipelines
10
Changes
6
Expand
addresses
#90 (closed)
Edited
1 year ago
by
Jon Richter
👍
0
👎
0
Merge request reports
Compare
dev
version 4
fec4b48d
1 year ago
version 3
c9bc05bf
1 year ago
version 2
33c4df9a
1 year ago
version 1
aa9e8289
1 year ago
dev (base)
and
latest version
latest version
1c17dbcc
3 commits,
1 year ago
version 4
fec4b48d
3 commits,
1 year ago
version 3
c9bc05bf
3 commits,
1 year ago
version 2
33c4df9a
3 commits,
1 year ago
version 1
aa9e8289
3 commits,
1 year ago
6 files
+
172
−
40
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
.devcontainer/Dockerfile
0 → 100644
+
20
−
0
Options
# https://github.com/devcontainers/images/blob/59124b1fbef578f3572550f34645872404f5d09f/src/typescript-node/.devcontainer/Dockerfile
# [Choice] Node.js version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): 20, 18, 20-bookworm, 18-bookworm, 20-bullseye, 18-bullseye, 20-buster, 18-buster
ARG
VARIANT=20-bookworm
FROM
mcr.microsoft.com/devcontainers/javascript-node:1-${VARIANT}
# Install tslint, typescript. eslint is installed by javascript image
ARG
NODE_MODULES="tslint-to-eslint-config typescript"
RUN
su node
-c
"umask 0002 && npm install -g
${
NODE_MODULES
}
"
\
&&
npm cache clean
--force
>
/dev/null 2>&1
# [Optional] Uncomment this section to install additional OS packages.
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install --no-install-recommends <your-package-list-here>
# [Optional] Uncomment if you want to install an additional version of node using nvm
# ARG EXTRA_NODE_VERSION=10
# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
# [Optional] Uncomment if you want to install more global node packages
RUN
su node
-c
"npm install -g pnpm"
Loading