| 1234567891011121314151617 |
- FROM container-registry.oracle.com/os/oraclelinux:8
- RUN dnf upgrade -y && \
- dnf module enable nodejs:16 -y && \
- dnf module install nodejs -y
- WORKDIR /app
- COPY . .
- RUN npm ci
- EXPOSE 8001
- ENV APP_NAME "Plugin A"
- CMD [ "npm", "run", "start" ]
|