Skip to content

Commit

Permalink
update dockerfile to install mysql-client
Browse files Browse the repository at this point in the history
  • Loading branch information
coffee-cup committed Nov 2, 2023
1 parent 07799d0 commit 94c96b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Build and Publish Docker Image

on:
workflow_dispatch:
push:
branches:
- 'main'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine

RUN apk update && apk add postgresql-client bash ncurses
RUN apk update && apk add mysql-client bash ncurses

WORKDIR app

Expand Down

0 comments on commit 94c96b0

Please sign in to comment.