Skip to content

Commit

Permalink
ci: Prepare for 7.4.0 release (#111)
Browse files Browse the repository at this point in the history
* ci: Prepare for 7.4.0 release

* Update Dockerfile

* Update Dockerfile.dashboard
  • Loading branch information
cbaker6 authored Dec 24, 2024
1 parent 2a3698f commit a4e6263
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags: [ '*.*.*', '*.*.*-*' ]

env:
LATEST: '7.3.0'
LATEST: '7.4.0'
REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}

Expand Down
4 changes: 2 additions & 2 deletions parse/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################################
# Build stage
############################################################
FROM parseplatform/parse-server:latest AS build
FROM parseplatform/parse-server:7.4.0 AS build

# Setup directories
COPY ./scripts/ ./scripts/
Expand All @@ -19,7 +19,7 @@ RUN apk --no-cache add git \
############################################################
# Release stage
############################################################
FROM parseplatform/parse-server:latest AS release
FROM parseplatform/parse-server:7.4.0 AS release

# Start parse-hipaa setup as root
USER root
Expand Down
4 changes: 2 additions & 2 deletions parse/Dockerfile.dashboard
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################################
# Build stage
############################################################
FROM parseplatform/parse-server:latest AS build
FROM parseplatform/parse-server:7.4.0 AS build

# Setup directories
COPY ./scripts/ ./scripts/
Expand All @@ -19,7 +19,7 @@ RUN apk --no-cache add git \
############################################################
# Release stage
############################################################
FROM parseplatform/parse-server:latest AS release
FROM parseplatform/parse-server:7.4.0 AS release

# Start parse-hipaa setup as root
USER root
Expand Down

0 comments on commit a4e6263

Please sign in to comment.