Skip to content

Commit

Permalink
Install OpenSSL in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-b-rose committed Dec 13, 2024
1 parent 7ad98f6 commit 64afcb8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 362 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/fly-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# See https://fly.io/docs/app-guides/continuous-deployment-with-github-actions/

name: Fly Deploy
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy app
runs-on: ubuntu-latest
concurrency: deploy-group # optional: ensure only one action runs at a time
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:18-alpine
RUN apk add --no-cache openssl

EXPOSE 3000

Expand Down
362 changes: 0 additions & 362 deletions README.md

This file was deleted.

0 comments on commit 64afcb8

Please sign in to comment.