Skip to content

Commit

Permalink
Merge pull request #19 from A1bert04/main
Browse files Browse the repository at this point in the history
Updated Dockerfile base image
  • Loading branch information
matth-x authored May 27, 2024
2 parents 558d14f + a4d7d32 commit d15234e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Use Ubuntu as the base image
FROM ubuntu:latest
# Use Alpine Linux as the base image
FROM alpine:latest

# Update package lists and install necessary dependencies
RUN apt-get update && apt-get install -y \
RUN apk update && \
apk add --no-cache \
git \
cmake \
libssl-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*
openssl-dev \
build-base

# Set the working directory inside the container
WORKDIR /MicroOcppSimulator
Expand Down

0 comments on commit d15234e

Please sign in to comment.