Dishit
Dishit
DDeno
Created by Dishit on 2/14/2024 in #help
How to get the Docker ARM image for Deno
Ah i see, thank you
8 replies
DDeno
Created by Dishit on 2/14/2024 in #help
How to get the Docker ARM image for Deno
My docker file
# Use the official Deno image from the Docker Hub
FROM denoland/deno:1.40.4

# Set the working directory
WORKDIR /app

# Copy the project files to the Docker image
COPY . .

# Expose port 3000 to the outside
EXPOSE 3000

# Run the server when the Docker image is run, replace 'server.js' with your server file
CMD ["deno", "run", "--allow-all", "main.ts"]
# Use the official Deno image from the Docker Hub
FROM denoland/deno:1.40.4

# Set the working directory
WORKDIR /app

# Copy the project files to the Docker image
COPY . .

# Expose port 3000 to the outside
EXPOSE 3000

# Run the server when the Docker image is run, replace 'server.js' with your server file
CMD ["deno", "run", "--allow-all", "main.ts"]
8 replies
DDeno
Created by Dishit on 2/5/2023 in #help
Any tool that will complie my TS code to JS?
Yeah well that solves my issue anways. I’m testing my code on a new serverless architecture design, and i wanted to reduce the startup time by not making deno transpile my code
10 replies
DDeno
Created by Dishit on 2/5/2023 in #help
Any tool that will complie my TS code to JS?
I just learnt that i can also use deno bundle for my issue too
10 replies
DDeno
Created by Dishit on 2/5/2023 in #help
Any tool that will complie my TS code to JS?
Alright ill take a look
10 replies
DDeno
Created by Dishit on 2/5/2023 in #help
Any tool that will complie my TS code to JS?
Yup
10 replies
DDeno
Created by Dishit on 2/5/2023 in #help
Any tool that will complie my TS code to JS?
Also want to convert my vendor folder to JS
10 replies