Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit 2d62321

Browse files
authored
fix invalid download path for ElasticMQ jar in Dockerfile (#5822)
1 parent dc25fb6 commit 2d62321

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ ARG DYNAMODB_ZIP_URL=https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_
134134
RUN mkdir -p /opt/code/localstack/localstack/infra/dynamodb && \
135135
curl -L -o /tmp/localstack.ddb.zip ${DYNAMODB_ZIP_URL} && \
136136
(cd localstack/infra/dynamodb && unzip -q /tmp/localstack.ddb.zip && rm /tmp/localstack.ddb.zip) && \
137-
curl -L -o /opt/code/localstack/localstack/infra/elasticmq-server.jar \
137+
mkdir -p /opt/code/localstack/localstack/infra/elasticmq && \
138+
curl -L -o /opt/code/localstack/localstack/infra/elasticmq/elasticmq-server.jar \
138139
https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-1.1.0.jar
139140

140141
# upgrade python build tools

0 commit comments

Comments
 (0)