Skip to content

Commit 282f13e

Browse files
committed
fix dockerfile name
1 parent 01a3eda commit 282f13e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

actions/deploy-reflex-backend/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ inputs:
3333
description: "The private ssh key that grants access to the VPS"
3434
required: true
3535
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
3641

3742
runs:
3843
using: "composite"
@@ -80,7 +85,7 @@ runs:
8085
uses: docker/build-push-action@v5
8186
with:
8287
context: .
83-
file: backend.Dockerfile
88+
file: ${{ inputs.dockerfile-name }}
8489
push: true
8590
tags: ghcr.io/${{ env.OWNER_LC }}/${{ inputs.site-name }}-backend:latest
8691

0 commit comments

Comments
 (0)