Skip to content

Commit

Permalink
chore: 🔧 upgrade node and circleci filter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed May 19, 2020
1 parent f79667c commit f91f177
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 26 deletions.
40 changes: 20 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,30 +60,30 @@ workflows:
publish:
jobs:
- amd64:
filters:
branches:
ignore: /.*/
tags:
only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
- arm32v7:
filters:
branches:
ignore: /.*/
tags:
only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
- arm64v8:
filters:
branches:
ignore: /.*/
tags:
only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
- multiarch:
requires:
- amd64
- arm32v7
- arm64v8
filters:
branches:
ignore: /.*/
tags:
only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /v(?:(?<major>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<minor>(?:0|[1-9](?:(?:0|[1-9])+)*))[.](?<patch>(?:0|[1-9](?:(?:0|[1-9])+)*))(?:-(?:([A-Za-z1-9])*))?)$/
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ---------------
# Install Dependencies
# ---------------
FROM node:12-alpine as build
FROM node:12.16-alpine as build

# Install dependencies neccesary for node-gyp on node alpine
RUN apk add --update --no-cache \
Expand All @@ -19,7 +19,7 @@ RUN npm install -D cross-env typescript @types/react @next/bundle-analyzer
# ---------------
# Build App
# ---------------
FROM node:12-alpine
FROM node:12.16-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions arm32v7.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ---------------
# Install Dependencies
# ---------------
FROM arm32v7/node:12-alpine as build
FROM arm32v7/node:12.16-alpine as build

# Install dependencies neccesary for node-gyp on node alpine
RUN apk add --update --no-cache \
Expand All @@ -19,7 +19,7 @@ RUN npm install -D cross-env typescript @types/react @next/bundle-analyzer
# ---------------
# Build App
# ---------------
FROM arm32v7/node:12-alpine
FROM arm32v7/node:12.16-alpine

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions arm64v8.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ---------------
# Install Dependencies
# ---------------
FROM arm64v8/node:12-alpine as build
FROM arm64v8/node:12.16-alpine as build

# Install dependencies neccesary for node-gyp on node alpine
RUN apk add --update --no-cache \
Expand All @@ -19,7 +19,7 @@ RUN npm install -D cross-env typescript @types/react @next/bundle-analyzer
# ---------------
# Build App
# ---------------
FROM arm64v8/node:12-alpine
FROM arm64v8/node:12.16-alpine

WORKDIR /app

Expand Down

0 comments on commit f91f177

Please sign in to comment.