We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a3eda commit 282f13eCopy full SHA for 282f13e
actions/deploy-reflex-backend/action.yml
@@ -33,6 +33,11 @@ inputs:
33
description: "The private ssh key that grants access to the VPS"
34
required: true
35
type: string
36
+ dockerfile-name:
37
+ description: "The name of the Dockerfile to use for building the image"
38
+ required: false
39
+ default: "Dockerfile"
40
+ type: string
41
42
runs:
43
using: "composite"
@@ -80,7 +85,7 @@ runs:
80
85
uses: docker/build-push-action@v5
81
86
with:
82
87
context: .
83
- file: backend.Dockerfile
88
+ file: ${{ inputs.dockerfile-name }}
84
89
push: true
90
tags: ghcr.io/${{ env.OWNER_LC }}/${{ inputs.site-name }}-backend:latest
91
0 commit comments