Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
# syntax=docker/dockerfile:1
|
2 |
|
3 |
FROM golang:1.22 AS builder
|
4 |
-
RUN apt install -y git
|
5 |
-
git clone https://github.com/OwO-Network/DeepLX.git /go/src/github.com/OwO-Network/DeepLX
|
6 |
WORKDIR /go/src/github.com/OwO-Network/DeepLX
|
7 |
COPY main.go ./
|
8 |
COPY types.go ./
|
|
|
1 |
# syntax=docker/dockerfile:1
|
2 |
|
3 |
FROM golang:1.22 AS builder
|
4 |
+
RUN apt install -y git && \
|
5 |
+
git clone https://github.com/OwO-Network/DeepLX.git /go/src/github.com/OwO-Network/DeepLX
|
6 |
WORKDIR /go/src/github.com/OwO-Network/DeepLX
|
7 |
COPY main.go ./
|
8 |
COPY types.go ./
|