This commit is contained in:
parent
3791b5ee48
commit
4b34f8cd5e
2 changed files with 5 additions and 4 deletions
|
@ -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"]
|
||||
|
|
|
@ -16,7 +16,7 @@ type Config struct {
|
|||
|
||||
var C = Config{
|
||||
ZWaveJSServer: "ws://home-assistant:3000",
|
||||
SqliteDatabase: "lockserver.db",
|
||||
SqliteDatabase: "/data/lockserver.db",
|
||||
HTTPBind: ":8080",
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue