Skip to content

Commit

Permalink
Fix Version Problems
Browse files Browse the repository at this point in the history
  • Loading branch information
emiryumak committed Jun 16, 2023
1 parent c094f07 commit 06fb3a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rilke/cli",
"version": "16.0.1",
"version": "16.0.2",
"description": "A Schematic for Rilke Architect",
"scripts": {
"build": "tsc -p tsconfig.json",
Expand Down
2 changes: 1 addition & 1 deletion src/application/files/src/main.server.ts.template
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ if (environment.production) {
}

export { AppServerModule } from './app/app.server.module';
export { renderModule, renderModuleFactory } from '@angular/platform-server';
export { renderModule } from '@angular/platform-server';
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:14-alpine as buildContainer
FROM node:16-alpine as buildContainer
WORKDIR /app
COPY ./package.json /app/
RUN npm install -g @rilke/cli
RUN npm install
COPY ./ /app
RUN npm run <%= configuration %>:build:ssr

FROM node:14-alpine
FROM node:16-alpine

WORKDIR /app
# Copy dependency definitions
Expand Down

0 comments on commit 06fb3a0

Please sign in to comment.