Skip to content

Commit bd1bf3f

Browse files
authored
Update Dockerfile
Updated Docker to include the latest version of Go which fixes an error when running the initial docker build. httpx doesn't support 17.5 anymore
1 parent 41637d8 commit bd1bf3f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ RUN unzip lithops_lambda.zip \
6363

6464

6565
# install go
66-
RUN wget https://dl.google.com/go/go1.17.5.linux-amd64.tar.gz
67-
RUN tar -xvf go1.17.5.linux-amd64.tar.gz
68-
RUN rm go1.17.5.linux-amd64.tar.gz
66+
RUN wget https://dl.google.com/go/go1.19.5.linux-amd64.tar.gz
67+
RUN tar -xvf go1.19.5.linux-amd64.tar.gz
68+
RUN rm go1.19.5.linux-amd64.tar.gz
6969
RUN mv go /usr/local
7070

7171
# ENV for Go
@@ -104,4 +104,4 @@ COPY ./massdns /usr/local/bin/massdns
104104

105105

106106
ENTRYPOINT [ "/usr/local/bin/python", "-m", "awslambdaric" ]
107-
CMD [ "handler.entry_point.lambda_handler" ]
107+
CMD [ "handler.entry_point.lambda_handler" ]

0 commit comments

Comments
 (0)