2 Commits

Author SHA1 Message Date
7eae65b78c 2.3.2 2023-09-02 23:16:49 +02:00
76994aa4ed feat: update dockerfile 2023-09-02 23:16:40 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -6,10 +6,10 @@ WORKDIR /app
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
FROM base AS prod-deps FROM base AS prod-deps
RUN npm install --production RUN npm install
FROM base AS build-deps FROM base AS build-deps
RUN npm install --production=false RUN npm install
FROM build-deps AS build FROM build-deps AS build
COPY . . COPY . .

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "alexohneander-astro", "name": "alexohneander-astro",
"version": "2.3.1", "version": "2.3.2",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "alexohneander-astro", "name": "alexohneander-astro",
"version": "2.3.1", "version": "2.3.2",
"dependencies": { "dependencies": {
"@astrojs/rss": "^2.4.1", "@astrojs/rss": "^2.4.1",
"@resvg/resvg-js": "^2.4.1", "@resvg/resvg-js": "^2.4.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "alexohneander-astro", "name": "alexohneander-astro",
"version": "2.3.1", "version": "2.3.2",
"scripts": { "scripts": {
"dev": "astro check --watch & astro dev", "dev": "astro check --watch & astro dev",
"start": "astro dev", "start": "astro dev",