Skip to content

Commit 64afcb8

Browse files
committed
Install OpenSSL in Dockerfile
1 parent 7ad98f6 commit 64afcb8

File tree

3 files changed

+19
-362
lines changed

3 files changed

+19
-362
lines changed

.github/workflows/fly-deploy.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/
2+
3+
name: Fly Deploy
4+
on:
5+
push:
6+
branches:
7+
- main
8+
jobs:
9+
deploy:
10+
name: Deploy app
11+
runs-on: ubuntu-latest
12+
concurrency: deploy-group # optional: ensure only one action runs at a time
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: superfly/flyctl-actions/setup-flyctl@master
16+
- run: flyctl deploy --remote-only
17+
env:
18+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

Dockerfile

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
FROM node:18-alpine
2+
RUN apk add --no-cache openssl
23

34
EXPOSE 3000
45

README.md

-362
This file was deleted.

0 commit comments

Comments
 (0)