Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Compile golang
FROM ubuntu:18.04 as golang-builder
FROM ubuntu:20.04 as golang-builder

RUN mkdir -p /app \
&& chown -R nobody:nogroup /app
Expand Down Expand Up @@ -62,7 +62,7 @@ RUN mv src/rosetta-ethereum /app/rosetta-ethereum \
&& rm -rf src

## Build Final Image
FROM ubuntu:18.04
FROM ubuntu:20.04

RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates

Expand Down