Skip to content

Commit

Permalink
added dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jan 10, 2024
1 parent 38741fe commit 68a270b
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
version: 2
updates:
- package-ecosystem: docker
directory: /
schedule:
interval: weekly
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
- package-ecosystem: docker
directory: /tests
schedule:
interval: weekly
5 changes: 5 additions & 0 deletions Dockerfile.go1.20
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM golang:1.20-alpine as builder
RUN apk add --no-cache make sudo git
#
ENTRYPOINT ["/bin/sh"]
#
5 changes: 5 additions & 0 deletions Dockerfile.go1.21
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM golang:1.21.2-alpine as builder
RUN apk add --no-cache make sudo git
#
ENTRYPOINT ["/bin/sh"]
#
5 changes: 5 additions & 0 deletions Dockerfile.go1.22
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM golang:1.22rc1-alpine as builder
RUN apk add --no-cache make sudo git
#
ENTRYPOINT ["/bin/sh"]
#

0 comments on commit 68a270b

Please sign in to comment.