Skip to content

Commit

Permalink
Fix Dockerfile to use sqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiefdhurst committed Oct 24, 2021
1 parent 99fa993 commit a639889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:latest

RUN apt-get update -y && apt-get install -y sqlite
RUN apt-get update -y && apt-get install -y sqlite3

WORKDIR /go/src/github.com/jamiefdhurst/journal
COPY . .
Expand All @@ -17,4 +17,4 @@ ENV J_TITLE ""
VOLUME /go/data
EXPOSE 3000

CMD ["journal"]
CMD ["journal"]

0 comments on commit a639889

Please sign in to comment.