Compare commits
No commits in common. "aec551c9d41b282810314d3a547a91f61940c990" and "db34d2fd904897477807ebc505c6a0b990af707f" have entirely different histories.
aec551c9d4
...
db34d2fd90
3 changed files with 1 additions and 3 deletions
|
@ -1,4 +1,3 @@
|
|||
*
|
||||
!/src
|
||||
!/public
|
||||
!/package*.json
|
||||
|
|
|
@ -21,6 +21,5 @@ COPY --from=build /app/dist ./dist
|
|||
|
||||
ENV HOST=0.0.0.0
|
||||
ENV PORT=4321
|
||||
ENV ASTRO_TELEMETRY_DISABLED=1
|
||||
EXPOSE 4321
|
||||
CMD node ./dist/server/entry.mjs
|
||||
|
|
|
@ -5,7 +5,7 @@ const { id, name, link } = Astro.props;
|
|||
<a href={link}>
|
||||
<div class="card">
|
||||
<div class="image-wrapper">
|
||||
<img src={`/img/logo/${id}.svg`} alt={`${name} logo`} />
|
||||
<img src={`/img/logo/${id}.svg`} alt={`${name} logo`}" />
|
||||
</div>
|
||||
<div class="text">
|
||||
<h1>{name}</h1>
|
||||
|
|
Loading…
Reference in a new issue