mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-06 17:44:11 +00:00
27 lines
1.1 KiB
Docker
27 lines
1.1 KiB
Docker
# This image will be published as dspace/dspace-angular
|
|
# See https://github.com/DSpace/dspace-angular/tree/main/docker for usage details
|
|
|
|
FROM docker.io/node:18-alpine
|
|
|
|
# Ensure Python and other build tools are available
|
|
# These are needed to install some node modules, especially on linux/arm64
|
|
RUN apk add --update python3 make g++ && rm -rf /var/cache/apk/*
|
|
|
|
WORKDIR /app
|
|
ADD . /app/
|
|
EXPOSE 4000
|
|
|
|
RUN npm install
|
|
|
|
# When running in dev mode, 4GB of memory is required to build & launch the app.
|
|
# This default setting can be overridden as needed in your shell, via an env file or in docker-compose.
|
|
# See Docker environment var precedence: https://docs.docker.com/compose/environment-variables/envvars-precedence/
|
|
ENV NODE_OPTIONS="--max_old_space_size=4096"
|
|
|
|
# On startup, run in DEVELOPMENT mode (this defaults to live reloading enabled, etc).
|
|
# Listen / accept connections from all IP addresses.
|
|
# NOTE: At this time it is only possible to run Docker container in Production mode
|
|
# if you have a public URL. See https://github.com/DSpace/dspace-angular/issues/1485
|
|
ENV NODE_ENV=development
|
|
CMD npm run serve -- --host 0.0.0.0
|