* add cloudfront * modify: healthcheck disable * modify: health check option * modify nodejsbuild * add nodejs version * endpoint configuration * set axios url * remote console.log VITE_PROXY_TARGET * create alb stack * add alb to origin * alb build success * remote baseURL setting * add redirect * change responseHttpStatus to 200 * modify output and readme * modify architecture * add health check path route to cloudfront routing * modified: c9 env name in deploy langflow section * modified : package dependency for pymysql * modified: deploy procedure * modified: deploy procedure (ja) --------- Co-authored-by: nsxshota <nsxshota@amazon.co.jp> Co-authored-by: ymkazuki <ymkazuki@amazon.co.jp> Co-authored-by: Shota Nakamoto <53632932+nsy0328@users.noreply.github.com>
21 lines
627 B
Docker
21 lines
627 B
Docker
FROM --platform=linux/amd64 python:3.10-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install Poetry
|
|
RUN apt-get update && apt-get install gcc g++ curl build-essential postgresql-server-dev-all -y
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
# # Add Poetry to PATH
|
|
ENV PATH="${PATH}:/root/.local/bin"
|
|
# # Copy the pyproject.toml and poetry.lock files
|
|
COPY poetry.lock pyproject.toml ./
|
|
# Copy the rest of the application codes
|
|
COPY ./ ./
|
|
|
|
# Install dependencies
|
|
RUN poetry config virtualenvs.create false && poetry install --no-interaction --no-ansi
|
|
|
|
RUN poetry add botocore
|
|
RUN poetry add pymysql
|
|
|
|
CMD ["sh", "./container-cmd-cdk.sh"]
|