fix containerfile
Some checks failed
/ build-container (push) Has been cancelled

This commit is contained in:
Finn 2024-04-23 19:16:40 -07:00
parent 3791b5ee48
commit 4b34f8cd5e
2 changed files with 5 additions and 4 deletions

View file

@ -14,11 +14,12 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
FROM library/golang:1.21 AS build
FROM alpine:latest AS build
RUN apk add --no-cache go
ADD . /go/lockserver
WORKDIR /go/lockserver
RUN CGO_ENABLED=0 go build ./cmd/lockserver
RUN go build ./cmd/lockserver
FROM scratch
FROM alpine:latest
COPY --from=build /go/lockserver/lockserver /lockserver
ENTRYPOINT ["/lockserver"]

View file

@ -16,7 +16,7 @@ type Config struct {
var C = Config{
ZWaveJSServer: "ws://home-assistant:3000",
SqliteDatabase: "lockserver.db",
SqliteDatabase: "/data/lockserver.db",
HTTPBind: ":8080",
}