Skip to content

Commit

Permalink
feat(gitstart): add initial Dockerfile with Go base image
Browse files Browse the repository at this point in the history
Introduce a Dockerfile using golang:1.23 as the base image. Sets up a working directory and copies project files for containerization. Provides a foundation for future Docker-based workflows.
  • Loading branch information
flemzord committed Jan 20, 2025
1 parent c5af4d5 commit 402b44a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions gitstart.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM golang:1.23
WORKDIR /app
COPY . .

0 comments on commit 402b44a

Please sign in to comment.