Skip to content

Commit

Permalink
Enable dependabot for docker images (#509)
Browse files Browse the repository at this point in the history
  • Loading branch information
amacneil authored Dec 21, 2023
1 parent b9f9b16 commit 3d2aa8f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
version: 2
updates:
- package-ecosystem: docker
directory: /
schedule:
interval: weekly

- package-ecosystem: github-actions
directory: /
schedule:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.env
.idea
*.log
/.cache
/db
Expand All @@ -8,5 +9,3 @@
/vendor
dist
node_modules
.vscode
.idea
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// -*- jsonc -*-
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.detectIndentation": false,
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# development image
FROM golang:1.21 as dev
FROM golang:1.21.4 as dev
WORKDIR /src
ENV PATH="/src/typescript/node_modules/.bin:${PATH}"
RUN git config --global --add safe.directory /src
Expand Down Expand Up @@ -27,7 +27,7 @@ COPY . /src/
RUN make build

# release stage
FROM alpine as release
FROM alpine:3.19.0 as release
RUN apk add --no-cache \
mariadb-client \
mariadb-connector-c \
Expand Down

0 comments on commit 3d2aa8f

Please sign in to comment.